home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1998 January: Mac OS SDK / Dev.CD Jan 98 SDK1.toast / Development Kits (Disc 1) / QuickDraw 3D / Samples / SampleCode / BoxMooV / headers / BoxMooV_window.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-08-14  |  586 b   |  25 lines  |  [TEXT/CWIE]

  1. /*  window.h                                                                            
  2.  
  3.     Michael Bishop - August 21 1996                                                    
  4.     Nick Thompson
  5.     (c)1994-96 Apple Computer Inc., All Rights Reserved                                
  6.  
  7. */
  8. #ifndef _WINDOW_H_
  9. #define    _WINDOW_H_
  10.  
  11. #include <QuickDraw.h>
  12.  
  13. enum {
  14.     kWindowResID = 6347
  15. } ;    
  16.  
  17. WindowPtr    Window_New(void) ;
  18. void        Window_Delete(WindowPtr theWindow) ;
  19. void        Window_Update( WindowPtr window );
  20. void        Window_Activate(WindowPtr theWindow, short activate);
  21. void        Window_DoContent (WindowPtr theWindow, EventRecord *event);
  22. WindowPtr    Window_GetNextWindow(WindowPtr theWindow);
  23. void        Window_DestroyAll(void);
  24.  
  25. #endif